home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / sys / amiga / programmer / 6098 / text0000.txt < prev   
Encoding:
Text File  |  1996-08-05  |  1.5 KB  |  49 lines

  1. In article <13213750@sourcery.han.de>, Olaf Barthel writes:
  2. > In Article <1982.6646T659T2072@sn.no>, Christopher Naas <christon@sn.no>
  3. > wrote:
  4. > > There's a small typo' in the Autodocs. Not very important, but AT
  5. > > should fix it before the next release. Posted here since they're
  6. > > playing hard to get hold of.
  7. > Ok, done. Any other typos that need fixing?
  8.  
  9. > dos.library/InternalLoadSeg                       dos.library/InternalLoadSeg
  10. >    NAME
  11. >     InternalLoadSeg -- Low-level load routine (V36)
  12.  
  13. [...]
  14.  
  15. >    INPUTS
  16. >     fh          - Filehandle to load from.
  17. >     table          - When loading an overlay, otherwise ignored.
  18. >     functionarray - Array of function to be used for read, alloc, and free.
  19. >        FuncTable[0] ->  Actual = ReadFunc(readhandle,buffer,length),DOSBase
  20. >                     D0                D1         A0     D0      A6
  21. In fact the same registers used for Read() are correct:
  22.     D0             D1    D2       D3
  23.  
  24. You didn't ask for it, but there's also a bug in the
  25. includes for the dos.library:
  26.  
  27. dos/dosasl.h:
  28.  
  29. > #define    APB_DOWILD    0    /* User option ALL */
  30. > #define APF_DOWILD    1
  31.  
  32. The note "obsolete" is missing.
  33.  
  34. > #define    APB_DODIR    2    /* Bit is SET if a DIR node should be */
  35. > #define APF_DODIR    4    /* entered. Application can RESET this */
  36. >                 /* bit after MatchFirst/MatchNext to AVOID */
  37. >                 /* entering a dir. */
  38.  
  39. It should be something like this:
  40. > #define    APB_DODIR    2    /* Bit has to be set by the APPLICATION */ 
  41. > #define APF_DODIR    4    /* if a DIR node should be entered. */
  42.  
  43. Bye, Patrick
  44. -- 
  45. patrick.ohly@stud.uni-karlsruhe.de
  46.  
  47.